home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dbg / ds3100.md / dbgAsm.s < prev    next >
Text File  |  1992-12-18  |  1KB  |  41 lines

  1. /*
  2.  * dbgAsm.s --
  3.  *
  4.  *    Contains misc. assembler routines for the PMAX.
  5.  *
  6.  *    Copyright (C) 1989 Digital Equipment Corporation.
  7.  *    Permission to use, copy, modify, and distribute this software and
  8.  *    its documentation for any purpose and without fee is hereby granted,
  9.  *    provided that the above copyright notice appears in all copies.  
  10.  *    Digital Equipment Corporation makes no representations about the
  11.  *    suitability of this software for any purpose.  It is provided "as is"
  12.  *    without express or implied warranty.
  13.  *
  14.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dbg/ds3100.md/dbgAsm.s,v 9.0 89/09/12 14:56:12 douglis Stable $ SPRITE (DECWRL)
  15.  */
  16.  
  17. #include <regdef.h>
  18.  
  19. /*----------------------------------------------------------------------------
  20.  *
  21.  * Dbg_Call --
  22.  *
  23.  *    Trap to the debugger.
  24.  *
  25.  * Results:
  26.  *         None.
  27.  *
  28.  * Side effects:
  29.  *    None.
  30.  *
  31.  *----------------------------------------------------------------------------
  32.  */
  33.     .globl Dbg_Call
  34.     .ent Dbg_Call, 0
  35. Dbg_Call:
  36.     .frame    sp, 0, ra
  37.     break    0
  38.     j        ra
  39.     .end    Dbg_Call
  40.  
  41.